type github.com/jackc/pgx/v5.pipelineBatchResults

17 uses

	github.com/jackc/pgx/v5 (current package)
		batch.go#L278: type pipelineBatchResults struct {
		batch.go#L291: func (br *pipelineBatchResults) Exec() (pgconn.CommandTag, error) {
		batch.go#L334: func (br *pipelineBatchResults) Query() (Rows, error) {
		batch.go#L387: func (br *pipelineBatchResults) QueryRow() Row {
		batch.go#L394: func (br *pipelineBatchResults) Close() error {
		batch.go#L436: func (br *pipelineBatchResults) earlyError() error {
		batch.go#L440: func (br *pipelineBatchResults) nextQueryAndArgs() (query string, args []any, err error) {
		conn.go#L1072: func (c *Conn) sendBatchQueryExecModeCacheStatement(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1074: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: errDisabledStatementCache, closed: true}
		conn.go#L1104: func (c *Conn) sendBatchQueryExecModeCacheDescribe(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1106: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: errDisabledDescriptionCache, closed: true}
		conn.go#L1135: func (c *Conn) sendBatchQueryExecModeDescribeExec(ctx context.Context, b *Batch) (pbr *pipelineBatchResults) {
		conn.go#L1157: func (c *Conn) sendBatchExtendedWithDescription(ctx context.Context, b *Batch, distinctNewQueries []*pgconn.StatementDescription, sdCache stmtcache.Cache) (pbr *pipelineBatchResults) {
		conn.go#L1223: 			return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1232: 			return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1248: 		return &pipelineBatchResults{ctx: ctx, conn: c, err: err, closed: true}
		conn.go#L1251: 	return &pipelineBatchResults{